for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
'use strict';
import Command from './command';
export default class Default extends Command {
match(name) {
return ['list', 'help'].includes(name) === false;
}